home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / ostack.h < prev    next >
C/C++ Source or Header  |  1996-04-19  |  3KB  |  89 lines

  1. /* Copyright (C) 1991, 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* ostack.h */
  20. /* Definitions for Ghostscript operand stack */
  21.  
  22. #ifndef ostack_INCLUDED
  23. #  define ostack_INCLUDED
  24.  
  25. #include "istack.h"
  26.  
  27. /* Define the operand stack pointers. */
  28. typedef s_ptr os_ptr;
  29. typedef const_s_ptr const_os_ptr;
  30. extern ref_stack o_stack;
  31. #define osbot (o_stack.bot)
  32. #define osp (o_stack.p)
  33. #define ostop (o_stack.top)
  34.  
  35. /* Macro to ensure enough room on the operand stack */
  36. #define check_ostack(n)\
  37.   if ( ostop - osp < (n) )\
  38.     { o_stack.requested = (n); return_error(e_stackoverflow); }
  39.  
  40. /* Operand stack manipulation. */
  41.  
  42. /* Note that push sets osp to (the new value of) op. */
  43. /* The do... avoids problems with a possible enclosing 'if'. */
  44. #define push(n)\
  45.   do { if ( (op += (n)) > ostop )\
  46.         { o_stack.requested = (n); return_error(e_stackoverflow); }\
  47.        else osp = op;\
  48.   } while (0)
  49.  
  50. /*
  51.  * Note that the pop macro only decrements osp, not op.  For this reason,
  52.  *
  53.  *    >>>    pop should only be used just before returning,    <<<
  54.  *    >>>    or else op must be decremented explicitly.    <<<
  55.  */
  56. #define pop(n) (osp -= (n))
  57.  
  58. /*
  59.  * Note that the interpreter does not check for operand stack underflow
  60.  * before calling the operator procedure.  There are "guard" entries
  61.  * with invalid types and attributes just below the bottom of the
  62.  * operand stack: if the operator returns with a typecheck error,
  63.  * the interpreter checks for underflow at that time.
  64.  * Operators that don't typecheck their arguments must check for
  65.  * operand stack underflow explicitly; operators that take a variable
  66.  * number of arguments must also check for stack underflow in those cases
  67.  * where they expect more than their minimum number of arguments.
  68.  * (This is because the interpreter can only recognize that a typecheck
  69.  * is really a stackunderflow when the stack has fewer than the
  70.  * operator's declared minimum number of entries.)
  71.  */
  72. #define check_op(nargs)\
  73.   if ( op < osbot + ((nargs) - 1) ) return_error(e_stackunderflow)
  74. /*
  75.  * Similarly, in order to simplify some overflow checks, we allocate
  76.  * a few guard entries just above the top of the o-stack.
  77.  */
  78.  
  79. /*
  80.  * The operand stack is implemented as a linked list of blocks;
  81.  * operators that can push or pop an unbounded number of values, or that
  82.  * access the entire o-stack, must take this into account.  These are:
  83.  *    (int)copy  index  roll  clear  count  cleartomark
  84.  *    counttomark  aload  astore  packedarray
  85.  *    getdeviceprops  putdeviceprops
  86.  */
  87.  
  88. #endif                    /* ostack_INCLUDED */
  89.